home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
CCARGC.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1988-02-01
|
384 b
|
10 lines
/*
** fetch argument count from DL register
*/
CCARGC() {
#asm
MOV AL,DL ;move argument count into function return register
CBW ;convert to 16 bit value
#endasm
}